home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / net / ds5000.md / netConfig.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  43 lines

  1. /*
  2.  * netConfig.c --
  3.  *
  4.  *    Machine-type dependent initialization of the network interfaces.
  5.  *
  6.  * Copyright (C) 1987 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/net/ds5000.md/netConfig.c,v 1.3 92/06/03 22:48:31 voelker Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #include <sprite.h>
  20. #include <net.h>
  21. #include <netInt.h>
  22. #include <netLEInt.h>
  23. #include <machAddrs.h>
  24.  
  25. #include <netDFInt.h>
  26.  
  27. /*
  28.  * Fields are name, unit, slot, virtual flag, vector, and init routine.
  29.  * For the ds5000 only the slot and init routine are used.
  30.  */
  31. Net_Interface netConfigInterfaces[] = {
  32.     {"LE", 0, (Address) 0, TRUE, -1, NetLEInit},
  33.     {"LE", 0, (Address) 1, TRUE, -1, NetLEInit}, 
  34.     {"LE", 0, (Address) 2, TRUE, -1, NetLEInit},
  35.     {"LE", 0, (Address) 6, TRUE, -1, NetLEInit},
  36.     {"DF", 0, (Address) 0, FALSE, -1, NetDFInit},
  37.     {"DF", 0, (Address) 1, FALSE, -1, NetDFInit},
  38.     {"DF", 0, (Address) 2, FALSE, -1, NetDFInit},
  39. };
  40. int netNumConfigInterfaces = 
  41.         sizeof(netConfigInterfaces) / sizeof(Net_Interface);
  42.  
  43.